home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / libopenexr6 / README < prev   
Text File  |  2006-12-14  |  2KB  |  69 lines

  1. ABOUT THE OPENEXR LIBRARIES
  2. ----------------------------
  3.  
  4. IlmImf is our "EXR" file format for storing 16-bit FP images.  Libraries in
  5. this package depend on the IlmBase library.
  6.  
  7. See the IlmImfExamples directory for some code that demonstrates how
  8. to use the IlmImf library to read and write OpenEXR files.  The doc
  9. directory contains some high-level documentation and history about the
  10. OpenEXR format.
  11.  
  12. If you have questions about using the OpenEXR libraries, you may want
  13. to join our developer mailing list.  See http://www.openexr.com for
  14. details.
  15.  
  16.  
  17. LICENSE
  18. -------
  19.  
  20. The OpenEXR source code distribution is free software.  See the file
  21. named COPYING (included in this distribution) for details.
  22.  
  23.  
  24. BUILDING OPENEXR
  25. ----------------
  26.  
  27. Building OpenEXR requires the IlmBase and the zlib library.
  28.  
  29. You can obtain the source code for zlib from:
  30.  
  31.    http://www.zlib.net
  32.  
  33. If you're building OpenEXR on a Windows platform, see README.win32 for
  34. instructions on how to build OpenEXR.  The remainder of this file
  35. applies only to GNU/Linux or other UNIX-like systems.
  36.  
  37. After installing the required libraries, to build OpenEXR on
  38. GNU/Linux or other UNIX-like systems, do this:
  39.  
  40. ./configure
  41. make
  42. make install
  43.  
  44. unless you obtained OpenEXR directly from CVS, in which case you
  45. should first read README.CVS.
  46.  
  47. See README.OSX for details on building OpenEXR in MacOS X.
  48.  
  49. Do `make check` to run the OpenEXR confidence tests.  They should all
  50. pass; if you find a test that does not pass on your system, please let
  51. us know.
  52.  
  53. Other UNIX variants haven't been tested, but should be easy to build.
  54. Let us know if you're having problems porting OpenEXR to a particular
  55. platform.
  56.  
  57. All include files needed to use the OpenEXR libraries are installed in the 
  58. OpenEXR subdirectory of the install prefix, e.g. /usr/local/include/OpenEXR.
  59.  
  60.  
  61. USING OPENEXR IN YOUR APPLICATIONS
  62. ----------------------------------
  63.  
  64. On systems with support for pkg-config, use `pkg-config --cflags
  65. OpenEXR` for the C++ flags required to compile against OpenEXR
  66. headers; and `pkg-config --libs OpenEXR` for the linker flags required
  67. to link against OpenEXR libraries.
  68.  
  69.